Skip to content

Disable failing sync Actions job in upstream sync workflow#16

Draft
Copilot wants to merge 3 commits into
masterfrom
copilot/disable-failing-sync-job
Draft

Disable failing sync Actions job in upstream sync workflow#16
Copilot wants to merge 3 commits into
masterfrom
copilot/disable-failing-sync-job

Conversation

Copilot AI commented Jun 25, 2026

Copy link
Copy Markdown

The scheduled upstream sync workflow is currently failing on automatic merge conflicts, producing a persistent red check (sync, run job 83330418155). This change disables that job path while keeping the workflow definition in place for future re-enablement.

  • Workflow behavior

    • Disabled jobs.sync in .github/workflows/sync-upstream.yml via a job-level guard so the failing automation no longer executes.
  • Workflow security posture

    • Added explicit token permissions at workflow scope to avoid implicit defaults and tighten workflow configuration hygiene.
  • Maintainability

    • Added an inline note documenting why the job is disabled (merge-conflict failures in unattended sync).
permissions:
  contents: write
  pull-requests: write

jobs:
  sync:
    # Disabled due to repeated merge-conflict failures in automation; run manually if needed.
    if: false

Copilot AI changed the title Disable failing sync GitHub Actions job Disable failing sync Actions job in upstream sync workflow Jun 25, 2026
Copilot AI requested a review from vroonhof June 25, 2026 15:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants